home *** CD-ROM | disk | FTP | other *** search
- package java.sql;
-
- import java.util.Map;
-
- public interface Array {
- String getBaseTypeName() throws SQLException;
-
- int getBaseType() throws SQLException;
-
- Object getArray() throws SQLException;
-
- Object getArray(Map<String, Class<?>> var1) throws SQLException;
-
- Object getArray(long var1, int var3) throws SQLException;
-
- Object getArray(long var1, int var3, Map<String, Class<?>> var4) throws SQLException;
-
- ResultSet getResultSet() throws SQLException;
-
- ResultSet getResultSet(Map<String, Class<?>> var1) throws SQLException;
-
- ResultSet getResultSet(long var1, int var3) throws SQLException;
-
- ResultSet getResultSet(long var1, int var3, Map<String, Class<?>> var4) throws SQLException;
-
- void free() throws SQLException;
- }
-